Quickbook API icon

Quickbook API

(0 reviews)

Retrieve products account number ,product type and location

GET '/products/accountNumber/productsType'

Description

Get particular product by account number and productsType.

Authorization

The Authorization header carried the API access token in the format AL client_id:client_secret. Please see Security page for more information.

Content type

application/json

Uri Parameters

ParametersDescriptionRequired?
accountNumberaccount number associated with a specific product servicetrue
productsTypethe products retrieve by is either passenger or couriertrue

Response

 {
        "id": "a1111c8c-c720-46c3-8534-2fcdd730040d",
        "code": "standard_car",
        "name": "Select",
        "description": "Everyday choice and comfort - professional driver and medium car for up to 4 people and 2 large bags (TBS)",
        "type": "PASSENGER",
        "passengers": 2,
        "luggage": 4,
        "bicycle": false,
        "brand": {
            "name": "AddisonLee",
            "code": "addisonlee",
            "image": "https://static.addisonlee.com/partners/addisonlee/"
        },
        "availability": {
            "available": true,
            "LeadTime": "00:40:00"
        }
    }
]
ParametersDescription
idBooking product id
codeCode associated with a specific product
nameBooking product name
descriptionBooking product description
imageGraphics representation of the product
typeBooking product type
passengersNumber of passengers allowed for this product
luggageNumber of luggage allowed for this product
bicycleIs the specific product bike
brand nameBooking provider name
brand codeCode associated with a specific product provider
brand imageGraphics representation of the product provider
availability availableChecks for available services
availability LeadTimechecks for available time

Reviews